@charset "utf-8";
/* CSS Document */

/* Funnel Widget Styling */
.funnel-widget{
  width:100%;
  display:flex;
  justify-content:center;

	background-color: white;
}

.funnel-card{
  width:min(980px, 100%);
  border-radius:22px;
  padding:18px 18px 16px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(20,26,46,.92), rgba(10,14,26,.92));
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
  color:#e9eefc;
}

.funnel-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  margin-bottom:10px;
}

.funnel-card h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
}

.funnel-card p{
  margin:0 0 14px;
  color:rgba(233,238,252,.78);
  font-size:14.5px;
  line-height:1.5;
}

.funnel-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.btn-primary, .btn-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(180deg, #ff3b3b, #ff1f1f);
  color:#fff;
  box-shadow: 0 10px 22px rgba(255,46,46,.22);
}

.btn-ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:#e9eefc;
}

.funnel-meta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  font-size:12.5px;
  color:rgba(233,238,252,.72);
}
@media (max-width: 810px) {
	.funnel-card { margin: 0 5px;}
	
}
@media (max-width:520px){
  .funnel-card{ padding:16px; }
  .btn-primary, .btn-ghost{ width:100%; }
	.funnel-widget { width:100% }
	
}
